react-native-unit-components
Version:
Unit React Native components
31 lines • 743 B
TypeScript
export type UNAddress = {
street: string;
street2?: string;
city: string;
state: string;
postalCode: string;
country: string;
};
export type UNLimits = {
dailyWithdrawal?: string | number;
dailyPurchase?: string | number;
monthlyWithdrawal?: string | number;
monthlyPurchase?: string | number;
};
export type UNRelationshipData = {
type: string;
id: number | string;
};
export type UNRelationship = {
data: null | [] | UNRelationshipData | UNRelationshipData[];
};
export type UNFullName = {
first: string;
last: string;
};
export declare enum UNDirection {
Debit = "Debit",
Credit = "Credit"
}
export type UNTags = Record<string, string>;
//# sourceMappingURL=types.d.ts.map