@mcma/core
Version:
Node module with type definitions and helper utils for the EBU MCMA framework
13 lines (12 loc) • 449 B
TypeScript
import { McmaObject, McmaObjectProperties } from "./mcma-object";
export interface ResourceEndpointProperties extends McmaObjectProperties {
resourceType: string;
httpEndpoint: string;
authType?: string;
}
export declare class ResourceEndpoint extends McmaObject implements ResourceEndpointProperties {
resourceType: string;
httpEndpoint: string;
authType?: string;
constructor(properties: ResourceEndpointProperties);
}