bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/queries.ts
2024-06-13 11:48:15 -03:00

22 lines
332 B
TypeScript

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,
};