9 lines
154 B
TypeScript
Raw Normal View History

import { InitialValuesType } from './types';
export function main(
input: File | null,
options: InitialValuesType
): File | null {
return input;
}