json-function
Version:
It allows you to use methods such as where, limit, select, orderBy on JSON data.
14 lines (13 loc) • 339 B
TypeScript
export interface SchemaToolObject {
__schema__: {
job?: string;
values?: string[];
separator?: string;
custom?: Function;
};
}
declare const _default: {
join: (...args: string[]) => SchemaToolObject;
custom: (fn: Function, ...args: string[]) => SchemaToolObject;
};
export default _default;