getWorkbenchContext.d.ts 321 B

123456789101112
  1. export interface WorkbenchContextResult {
  2. workbenchName: string;
  3. workbenchType: string;
  4. }
  5. declare function getWorkbenchContext(): Promise<WorkbenchContextResult>;
  6. declare namespace getWorkbenchContext {
  7. var version: {
  8. android: string;
  9. ios: string;
  10. };
  11. }
  12. export default getWorkbenchContext;