scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
11 lines (10 loc) • 317 B
TypeScript
import { EPagBankLinkType } from '../enums/link-type.enum';
import { EPagBankRelLink } from '../enums/rel-link.enum';
import { IPagBankWallet } from './i-wallet';
export interface IPagBankLink {
rel: EPagBankRelLink;
href: string;
media: string;
type: EPagBankLinkType;
wallet?: IPagBankWallet;
}