ngx-dynamic-dashboard
Version:
an dashboard lib for angular 10
19 lines (18 loc) • 577 B
TypeScript
export interface TAG {
name: string;
}
export declare class EndPoint {
id: number;
name: string;
address: string;
user: string;
credentialType: string;
credential: string;
description: string;
tokenAPI: string;
tokenAPIProperty: string;
tokenAPIHeader: string;
tags: any;
constructor(name: string, address: string, user: string, credential: string, credentialType: string, description: string, tokenAPI: string, tokenAPIProperty: string, tokenAPIHeader: string, tags: any);
}
export declare const credentialScheme: string[];