python-archieve-projects/WechatBot/node_modules/cmd-ts/dist/esm/default.d.ts

9 lines
242 B
TypeScript

export declare type Default<T> = {
/**
* A default value to be provided when a value is missing.
* i.e., `string | null` should probably return `null`.
*/
defaultValue(): T;
defaultValueIsSerializable?: boolean;
};