hyperspace-desktop-client-w.../src/types/Field.tsx

9 lines
154 B
TypeScript

/**
* Basic type for a table entry, usually in Account
*/
export type Field = {
name: string;
value: string;
verified_at: string | null;
};