mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-20 22:49:33 +02:00
9 lines
154 B
TypeScript
9 lines
154 B
TypeScript
import { InitialValuesType } from './types';
|
|
|
|
export function main(
|
|
input: File | null,
|
|
options: InitialValuesType
|
|
): File | null {
|
|
return input;
|
|
}
|