You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
552 B
36 lines
552 B
export type SemVerIncrementType = 'minor' | 'major' | 'patch';
|
|
|
|
export interface User {
|
|
id: number;
|
|
name: string;
|
|
email: string;
|
|
}
|
|
|
|
export enum Role {
|
|
ADMIN = 'admin',
|
|
USER = 'user',
|
|
}
|
|
|
|
export interface ISolutionImplementation {
|
|
name: string;
|
|
functionalName: string;
|
|
customer: string;
|
|
customerCode: string;
|
|
path: string;
|
|
class: string;
|
|
url: string;
|
|
}
|
|
|
|
export interface ApiExternalsResponse {
|
|
target: {
|
|
$: {
|
|
path: string;
|
|
};
|
|
property: {
|
|
_: string;
|
|
$: {
|
|
name: string;
|
|
};
|
|
};
|
|
};
|
|
} |