Union of all property values in an object type.
Use this to derive a string literal union from a runtime const object declared with as const.
as const
export const XOTemplateLockingTypes = { P2S: 'p2s', P2PKH: 'p2pkh', P2SH: 'p2sh',} as const;export type XOTemplateLockingType = ValueOf<typeof XOTemplateLockingTypes>;// 'p2s' | 'p2pkh' | 'p2sh' Copy
export const XOTemplateLockingTypes = { P2S: 'p2s', P2PKH: 'p2pkh', P2SH: 'p2sh',} as const;export type XOTemplateLockingType = ValueOf<typeof XOTemplateLockingTypes>;// 'p2s' | 'p2pkh' | 'p2sh'
Union of all property values in an object type.
Use this to derive a string literal union from a runtime const object declared with
as const.