import type { SourceMapInput } from 'rollup';

export interface Output {
  code: string;
  map?: SourceMapInput;
}
