2024-11-03 17:16:20 +01:00

11 lines
237 B
TypeScript

/**
* @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';