6 lines
257 B
TypeScript
6 lines
257 B
TypeScript
export type RequestID = number & {
|
|
/** Marker to indicate that a `IdentifierSeed` may not be created directly */
|
|
readonly _opaque: unique symbol;
|
|
};
|
|
export declare const nextRequestID: (previousRequestId: RequestID | undefined | null) => RequestID;
|