UNPKG

@iota-pico/core

Version:
13 lines (12 loc) 377 B
import { IRngService } from "../interfaces/IRngService"; import { FactoryBase } from "./factoryBase"; /** * Factory to generate rng service. */ export declare class RngServiceFactory extends FactoryBase<IRngService> { /** * Get the instance of the factory. * @returns The factory instance. */ static instance(): FactoryBase<IRngService>; }