bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/queries.ts

22 lines
332 B
TypeScript
Raw Normal View History

2024-06-13 22:48:15 +08:00
import { gql } from '@apollo/client';
interface ScreenShare {
contentType: string;
}
export interface GetScreenShareTypeResponse {
screenshare: ScreenShare[];
}
export const getSceenShareType = gql`
subscription getSceenShareType {
screenshare {
contentType
}
}
`;
export default {
getSceenShareType,
};