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.
37 lines
512 B
37 lines
512 B
export type SemVerIncrementType = "minor" | "major" | "patch";
|
|
|
|
export type User = {
|
|
id: number;
|
|
name: string;
|
|
email: string;
|
|
};
|
|
|
|
export enum Role {
|
|
ADMIN = "admin",
|
|
USER = "user",
|
|
}
|
|
|
|
export type TypeSolutionImplementation = {
|
|
name: string;
|
|
functionalName: string;
|
|
customer: string;
|
|
customerCode: string;
|
|
path: string;
|
|
class: string;
|
|
url: string;
|
|
};
|
|
|
|
export type ApiExternalsResponse = {
|
|
target: {
|
|
$: {
|
|
path: string;
|
|
};
|
|
property: {
|
|
_: string;
|
|
$: {
|
|
name: string;
|
|
};
|
|
};
|
|
};
|
|
};
|