import {ImparsableConstructor} from "../parsing/json/Imparsable"; import {ParsingSchema} from "../types"; export function createParsingDescription(type: ImparsableConstructor): ParsingSchema { return { type, toParsable: x => x as any, factory: x => x as any }; }