wechaty-puppet
Version:
Abstract Puppet for Wechaty
66 lines (60 loc) • 2.09 kB
text/typescript
/**
* Wechaty - https://github.com/wechaty/wechaty
*
* @copyright 2016-2018 Huan LI <zixia@zixia.net>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
/**
* Huan(202110): Issue #168 - ReferenceError: Cannot access 'Puppet' before initialization
* @see https://github.com/wechaty/puppet/issues/168
*
* We need to import `interface-of.js` before import `puppet-abstract.js`
* or we will get the following error message:
*
* ReferenceError: Cannot access 'Puppet' before initialization
at file:///home/huan/git/wechaty/puppet/src/puppet/interface-of.ts:23:48
at ModuleJob.run (node:internal/modules/esm/module_job:175:25)
at async Loader.import (node:internal/modules/esm/loader:178:24)
at async Object.loadESM (node:internal/process/esm_loader:68:5)
* This is due to the circler dependence, the deeper reason is still not clear.
*/
import '../puppet/interface-of.js'
import {
VERSION,
log,
} from '../config.js'
import type {
PuppetOptions,
} from '../schemas/puppet.js'
import {
Puppet,
} from '../puppet/puppet-abstract.js'
import {
throwUnsupportedError,
} from '../throw-unsupported-error.js'
export type {
PuppetOptions,
}
export {
log,
Puppet,
throwUnsupportedError,
VERSION,
}
export * as filters from './filters.js'
export * as helpers from './helpers.js'
export * as impls from './impls.js'
export * as payloads from './payloads.js'
export * as types from './types.js'