7 lines
247 B
TypeScript
7 lines
247 B
TypeScript
import { FunctionData } from 'js-yaml-loader!*';
|
|
import { ISharedFunctionCollection } from './ISharedFunctionCollection';
|
|
|
|
export interface IFunctionCompiler {
|
|
compileFunctions(functions: readonly FunctionData[]): ISharedFunctionCollection;
|
|
}
|