11 lines
237 B
TypeScript
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';
|