Files

11 lines
237 B
TypeScript
Raw Permalink Normal View History

2026-03-31 16:38:22 -07:00
/**
* @typedef {'script'|'region'|'variants'} Field
*/
/**
* @type {{region: Record<string, Array<string>>}}
*/
export const many: {
region: Record<string, Array<string>>;
};
export type Field = 'script' | 'region' | 'variants';