mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-21 13:55:51 +00:00
18 lines
306 B
TypeScript
18 lines
306 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 IdObject = typeof object[number];
|