Skip to content

Commit

Permalink
feat(module): breaking change - remove direct export of methods
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaodong2008 committed Apr 17, 2024
1 parent 1938b06 commit c7df063
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
// all modules
import date from "./date";
import {FastjsDate} from "./date";
import dom from "./dom";
import {FastjsDom, createFastjsDomList} from "./dom";
import request from "./request";
import {FastjsRequest} from "./request"
import utils from "./utils/index";
import {rand, copy} from "./utils/index";
import {FastjsExpression} from "./base";
Expand All @@ -18,16 +15,9 @@ if (__DEV__) {

// export
export {
/** @module date */
date,
FastjsDate,
/** @module dom */
dom,
FastjsDom,
createFastjsDomList,
/** @module request */
request,
FastjsRequest,
/** @module utils */
utils,
rand,
Expand Down

0 comments on commit c7df063

Please sign in to comment.