@googleforcreators/media
Version:
Functionality for creating and working with media resources in the Web Stories editor.
15 lines • 371 B
TypeScript
/**
* External dependencies
*/
import type { DimensionableElement } from '@googleforcreators/units';
/**
* Internal dependencies
*/
import type { Resource } from './resource';
export interface MediaElement extends DimensionableElement {
resource: Resource;
scale?: number;
focalX?: number;
focalY?: number;
}
//# sourceMappingURL=mediaElement.d.ts.map