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

9 lines
222 B
TypeScript

export 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;
};