Skip to content

S48-1010-export-generated-types #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lib/index.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
export * as Management from "./management";
import * as GeneratedTypes from "./internal/reference/index";
export declare type ManagementTypesV2 = GeneratedTypes.V2.Operation;
export declare type ManagementTypesV3 = GeneratedTypes.V3.Operation;
export declare type StorefrontTypes = GeneratedTypes.Storefront.Operation;
1 change: 0 additions & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,3 @@ var __importStar = (this && this.__importStar) || function (mod) {
Object.defineProperty(exports, "__esModule", { value: true });
exports.Management = void 0;
exports.Management = __importStar(require("./management"));
// export * as Storefront from "./storefront"
6 changes: 6 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
export * as Management from "./management";
// export * as Storefront from "./storefront"

import * as GeneratedTypes from "./internal/reference/index"

export type ManagementTypesV2 = GeneratedTypes.V2.Operation;
export type ManagementTypesV3 = GeneratedTypes.V3.Operation;
export type StorefrontTypes = GeneratedTypes.Storefront.Operation;