mirror of
https://github.com/stoatchat/javascript-client-api.git
synced 2026-07-25 00:15:26 -04:00
13 lines
229 B
TypeScript
13 lines
229 B
TypeScript
/**
|
|
* Id
|
|
* @pattern [0123456789ABCDEFGHJKMNPQRSTVWXYZ]{26}
|
|
*/
|
|
export type Id = string;
|
|
|
|
/**
|
|
* Nonce value, prefer to use ULIDs here for better feature support.
|
|
* @minLength 1
|
|
* @maxLength 36
|
|
*/
|
|
export type Nonce = string;
|