mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-02-07 07:34:17 +00:00
27 lines
529 B
TypeScript
27 lines
529 B
TypeScript
|
export interface Secret {
|
||
|
key: string;
|
||
|
value: string;
|
||
|
username: string;
|
||
|
}
|
||
|
|
||
|
export interface RecentProcessModel {
|
||
|
processGroupIdentifier: string;
|
||
|
processModelIdentifier: string;
|
||
|
processModelDisplayName: string;
|
||
|
}
|
||
|
|
||
|
export interface ProcessGroup {
|
||
|
id: string;
|
||
|
display_name: string;
|
||
|
}
|
||
|
|
||
|
export interface ProcessModel {
|
||
|
id: string;
|
||
|
process_group_id: string;
|
||
|
display_name: string;
|
||
|
primary_file_name: string;
|
||
|
}
|
||
|
|
||
|
// tuple of display value and URL
|
||
|
export type BreadcrumbItem = [displayValue: string, url?: string];
|