1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
//// [reverseMappedTypeDeepDeclarationEmit.ts]
export type Validator<T> = NativeTypeValidator<T> | ObjectValidator<T>
export type NativeTypeValidator<T> = (n: any) => T | undefined
export type ObjectValidator<O> = {
[K in keyof O]: Validator<O[K]>
}
//native validators
export declare const SimpleStringValidator: NativeTypeValidator<string>;
///object validator function
export declare const ObjValidator: <V>(validatorObj: ObjectValidator<V>) => (o: any) => V;
export const test = {
Test: {
Test1: {
Test2: SimpleStringValidator
},
}
}
export const validatorFunc = ObjValidator(test);
export const outputExample = validatorFunc({
Test: {
Test1: {
Test2: "hi"
},
}
});
//// [reverseMappedTypeDeepDeclarationEmit.js]
"use strict";
exports.__esModule = true;
exports.outputExample = exports.validatorFunc = exports.test = void 0;
exports.test = {
Test: {
Test1: {
Test2: exports.SimpleStringValidator
}
}
};
exports.validatorFunc = (0, exports.ObjValidator)(exports.test);
exports.outputExample = (0, exports.validatorFunc)({
Test: {
Test1: {
Test2: "hi"
}
}
});
//// [reverseMappedTypeDeepDeclarationEmit.d.ts]
export type Validator<T> = NativeTypeValidator<T> | ObjectValidator<T>;
export type NativeTypeValidator<T> = (n: any) => T | undefined;
export type ObjectValidator<O> = {
[K in keyof O]: Validator<O[K]>;
};
export declare const SimpleStringValidator: NativeTypeValidator<string>;
export declare const ObjValidator: <V>(validatorObj: ObjectValidator<V>) => (o: any) => V;
export declare const test: {
Test: {
Test1: {
Test2: NativeTypeValidator<string>;
};
};
};
export declare const validatorFunc: (o: any) => {
Test: {
Test1: {
Test2: string;
};
};
};
export declare const outputExample: {
Test: {
Test1: {
Test2: string;
};
};
};
|