fathom-typescript
Version:
Fathom's official TypeScript SDK.
10 lines • 317 B
TypeScript
declare const __brand: unique symbol;
export type Unrecognized<T> = T & {
[__brand]: "unrecognized";
};
declare function unrecognized<T>(value: T): Unrecognized<T>;
export declare function startCountingUnrecognized(): {
end: () => number;
};
export { unrecognized };
//# sourceMappingURL=unrecognized.d.ts.map