fortel-ziweidoushu
Version:
紫微斗數排盤 Zi Wei Dou Shu
18 lines (17 loc) • 549 B
TypeScript
/// <reference types="node" />
import util from 'util';
declare class Ground {
index: number;
displayName: string;
constructor(index: number, displayName: string);
shift(i: number): Ground;
toJSON(): string;
toString(): string;
[util.inspect.custom](depth: number, opts: any): string;
static get(i: number): Ground;
static getByName(name: string): Ground;
static GROUNDS: readonly Readonly<Ground>[];
static values(): readonly Readonly<Ground>[];
equals(ground: Ground): boolean;
}
export { Ground };