bit-bin
Version:
<a href="https://opensource.org/licenses/Apache-2.0"><img alt="apache" src="https://img.shields.io/badge/License-Apache%202.0-blue.svg"></a> <a href="https://github.com/teambit/bit/blob/master/CONTRIBUTING.md"><img alt="prs" src="https://img.shields.io/b
16 lines (15 loc) • 459 B
TypeScript
import { GraphQLModule } from '@graphql-modules/core';
import Workspace from './workspace';
declare const _default: (workspace: Workspace) => GraphQLModule<any, any, any, {
Component: {
id: (component: any) => any;
};
Workspace: {
path: (ws: any) => any;
components: (ws: Workspace) => Promise<import("../component").Component[]>;
};
Query: {
workspace: () => Workspace;
};
}>;
export default _default;