@evilmonkeyinc/srd-api
Version:
Tools and helpers to query SRD content
13 lines (12 loc) • 323 B
TypeScript
import Condition from './Condition';
import Language from './Language';
import Race from './Race';
import Spell from './Spell';
export default interface Source {
name: string;
conditions?: Condition[];
languages?: Language[];
races?: Race[];
spells?: Spell[];
}
export declare const BasicRules: Source;