UNPKG

@jungvonmatt/sb-migrate

Version:

CLI tool for managing Storyblok schema and content migrations

21 lines (20 loc) 528 B
/** * /** * Interface of an ISpace's 'owner' property. * * @interface ISpaceOwner */ export interface ISpaceOwner { readonly userid: string; readonly email: string; readonly organization: string | null; readonly username: string | null; readonly use_username: boolean; readonly alt_email: string | null; readonly firstname: string; readonly lastname: string; readonly phone: string | null; readonly id: number; readonly login_strategy: string; readonly created_at: string; }