5 lines
90 B
TypeScript
5 lines
90 B
TypeScript
export interface ICredentials {
|
|
readonly username: string
|
|
readonly password: string
|
|
}
|