UNPKG

@appsemble/types

Version:

TypeScript definitions reused within Appsemble internally

14 lines (13 loc) 250 B
/** * A minimal user representation used to display author information on various data types. */ export interface Author { /** * The user id. */ id: string; /** * The display name of the user. */ name: string; }