@clerk/shared
Version:
Internal package utils used by the Clerk SDKs
11 lines • 364 B
TypeScript
//#region src/types/attributes.d.ts
/** @inline */
type FirstNameAttribute = 'first_name';
/** @inline */
type LastNameAttribute = 'last_name';
/** @inline */
type PasswordAttribute = 'password';
/** @inline */
type LegalAcceptedAttribute = 'legal_accepted';
//#endregion
export { FirstNameAttribute, LastNameAttribute, LegalAcceptedAttribute, PasswordAttribute };