mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
19 lines
325 B
TypeScript
19 lines
325 B
TypeScript
const object = [
|
|
'agenda',
|
|
'event-list',
|
|
'accao',
|
|
'publicacao',
|
|
//
|
|
'expediente',
|
|
'gabinete-digital',
|
|
'parecer',
|
|
'deferimento',
|
|
'despachos-pr',
|
|
'diplomas-assinar',
|
|
'diplomas',
|
|
'expedientes-pr',
|
|
'despachos',
|
|
'*',
|
|
] as const;
|
|
|
|
export type notificationObject = typeof object[number];
|