mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 12:37:46 +00:00
15 lines
326 B
Plaintext
15 lines
326 B
Plaintext
export const {{classname}} = {
|
|
{{#allowableValues}}
|
|
{{#enumVars}}
|
|
{{#enumDescription}}
|
|
/**
|
|
* {{.}}
|
|
*/
|
|
{{/enumDescription}}
|
|
{{{name}}}: {{{value}}}{{^-last}},{{/-last}}
|
|
{{/enumVars}}
|
|
{{/allowableValues}}
|
|
} as const;
|
|
|
|
export type {{classname}} = typeof {{classname}}[keyof typeof {{classname}}];
|