sgnm-neo4j-excel
Version:
neo4j excel module for nestJs
14 lines (12 loc) • 337 B
text/typescript
export interface MainHeaderInterface {
realm: string;
}
export interface HeaderInterface extends MainHeaderInterface {
language: string;
}
export interface UserInformationInterface extends HeaderInterface {
username: string;
}
export interface MainHeaderInterfaceWithToken extends MainHeaderInterface {
authorization: string;
}