Spaces:
Runtime error
Runtime error
File size: 362 Bytes
b5ea024 |
1 2 3 4 5 6 7 8 9 10 |
/**
* https://tc39.es/ecma402/#sec-getoption
* @param opts
* @param prop
* @param type
* @param values
* @param fallback
*/
export declare function GetOption<T extends object, K extends keyof T, F>(opts: T, prop: K, type: 'string' | 'boolean', values: T[K][] | undefined, fallback: F): Exclude<T[K], undefined> | F;
//# sourceMappingURL=GetOption.d.ts.map |