UNPKG

nubank.ts

Version:
14 lines (13 loc) 287 B
interface ITransferInDetails { screenType: string; screenPieces: IScreenPiece[]; } export interface IScreenPiece { tableHeader?: string; tableItems?: ITableItem[]; } export interface ITableItem { label: string; value: string; } export default ITransferInDetails;