20 lines
508 B
TypeScript
20 lines
508 B
TypeScript
export * from "./types.ts";
|
|
export {
|
|
isMediaSurface,
|
|
parseMediaSource,
|
|
parseMediaSurface,
|
|
parseMediaViewerContext,
|
|
} from "./validation.ts";
|
|
export { authorizeMediaSurface, transitionMediaSurface } from "./policy.ts";
|
|
export {
|
|
createMediaSurfaceLifecycle,
|
|
type MediaSurfaceBinding,
|
|
type MediaSurfaceLifecycle,
|
|
} from "./lifecycle.ts";
|
|
export {
|
|
createOfficeMediaPresentation,
|
|
type MediaSurfaceDescriptor,
|
|
type MediaSurfaceGrant,
|
|
type OfficeMediaPresentation,
|
|
} from "./presentation.ts";
|