UNPKG

@alexaegis/common

Version:

Common utility functions

11 lines 366 B
export interface SafeOption { /** * Perform extra safety checks, could result in much less actions taken * * @defaultValue false */ safe?: boolean; } export type NormalizedSafeOption = Required<SafeOption>; export declare const normalizeSafeOption: (options?: SafeOption) => NormalizedSafeOption; //# sourceMappingURL=safe.option.d.ts.map