storyblok-ts-client
Version:
Typescript library for working with Storyblok management API.
14 lines (12 loc) • 411 B
text/typescript
import {IUploadFormFields} from './IUploadFormFields'
/**
* Interface of an object returned from a successful Storyblok asset registration. It is used to the physical uploading of the asset to AWS S3 bucket.
*
* @interface IAssetRegistration
*/
export interface IRegistration {
readonly pretty_url: string
readonly public_url: string
readonly fields: IUploadFormFields
readonly post_url: string
}