UNPKG

@jungvonmatt/sb-migrate

Version:

CLI tool for managing Storyblok schema and content migrations

14 lines (13 loc) 356 B
/** * Interface of an ISpace's 'billing_address' property. * * @interface ISpaceBillingAddress */ export interface ISpaceBillingAddress { readonly name: string; readonly address_zip: string; readonly address_city: string; readonly address_line1: string; readonly address_country: string; readonly address_iso_country: string; }