sgnm-neo4j-excel
Version:
neo4j excel module for nestJs
13 lines (12 loc) • 344 B
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;
}