@mikezimm/fps-core-v7
Version:
Library of reusable core interfaces, types and constants migrated from fps-library-v2
14 lines • 508 B
TypeScript
import { ISimpleLink } from "./ISimpleLink";
export type IDetailedLinkDomain = '@SPO' | '@Teams' | '@External' | '@Custom' | 'N/A';
export interface IDomainDetails {
domain: string;
domainGroup: IDetailedLinkDomain;
}
/**
* The purpose of IDetailedLink is to add more detailed context to the link such has what type of domain
*/
export interface IDetailedLink extends ISimpleLink {
domain: string;
domainGroup: IDetailedLinkDomain;
}
//# sourceMappingURL=IDetailedLink.d.ts.map