polyvalid 0.1.7

A validator for package names, namespace, username and app name on wasmer
Documentation
---
source: /Users/xorcist/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmer-pack-testing-0.7.0/src/autodiscover.rs
---
// @ts-ignore
import { Polyvalid as _Polyvalid } from "./polyvalid/polyvalid";

/**
 * Options used when initializing the bindings.
 */
export type LoadOptions = {
    /** Additional imports to be provided to the WebAssembly module */
    imports: WebAssembly.Imports,
    /**
     * A user-specified WebAssembly module to use instead of the one bundled
     * with this package.
     */
    module: WebAssembly.Module,
};

export default class Bindings {
    polyvalid(options?: Partial<LoadOptions>): Promise<_Polyvalid>;
}