UNPKG

koishi-plugin-pcr-landosol-roster

Version:
23 lines (22 loc) 663 B
import { Context, Schema, Service } from 'koishi'; export declare const name = "landosol-roster"; declare module 'koishi' { interface Context { 'landosol-roster': LandosolRoster; } interface Events { 'pcr/landosol-roster-start'(): void; 'pcr/landosol-roster-stop'(): void; } } export declare const Config: Schema<object>; export declare class LandosolRoster extends Service { private CHARA_NAME; private CHARA_PROFILE; private UNAVAILABLE_CHARA; constructor(ctx: Context); charaName(): any; charaProfile(): any; unavailableChara(): number[]; } export declare function apply(ctx: Context): void;