@swell/cli
Version:
Swell's command line interface/utility
8 lines (7 loc) • 328 B
TypeScript
/**
* Mongo ObjectId shape — 24 hex chars, case-insensitive. The CLI accepts
* either-case input (curl/jq users tend to lowercase, admin URLs sometimes
* upper). All inspect grammars use the same pattern, so it lives here.
*/
export declare const HEX24: RegExp;
export declare function isObjectId(value: string): boolean;