mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00: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;
|
|
}
|