@posttext/modules
Version:
The official modules for Posttext
15 lines (14 loc) • 494 B
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
import { tagResolvers } from './resolvers.js';
export class StdModule {
static create() {
return new StdModule();
}
getTagResolvers(options) {
return tagResolvers(options);
}
}
export const module = new StdModule();
export const moduleFactory = StdModule;