* fix: typescript check error * fix: typescript check error * fix: typescript check error * fix: typescript check error * fix: typescript check error
22 lines
396 B
TypeScript
22 lines
396 B
TypeScript
export type PageType = {
|
|
params: {
|
|
locale: string;
|
|
};
|
|
};
|
|
|
|
export type GlobalRoleType = {
|
|
uid: 'administrator' | 'user';
|
|
};
|
|
|
|
export type MemberRoleType = {
|
|
uid: 'manager' | 'developer' | 'reporter';
|
|
};
|
|
|
|
export type AutomationStatusType = {
|
|
uid: 'automated' | 'automation-not-required' | 'cannot-be-automated' | 'obsolete';
|
|
};
|
|
|
|
export type TemplateType = {
|
|
uid: 'text' | 'step';
|
|
};
|