@googleforcreators/media
Version:
Functionality for creating and working with media resources in the Web Stories editor.
16 lines • 462 B
TypeScript
/**
* Internal dependencies
*/
import type { SequenceResource } from './sequenceResource';
import type { ResourceType } from './resourceType';
export interface Output {
/** The MIME type of the resource. E.g. "image/png". */
mimeType: string;
/** The source URL of the resource. */
src: string;
}
export interface GifResource extends SequenceResource {
type: ResourceType.Gif;
output: Output;
}
//# sourceMappingURL=gifResource.d.ts.map