@flesh-and-blood/search
Version:
TypeScript search engine for Flesh and Blood cards
50 lines (49 loc) • 1.36 kB
TypeScript
import { Class, Keyword, Subtype, Type } from "@flesh-and-blood/types";
export declare const shorthands: {
description: string;
expanded: string[];
filters: {
defenseGreaterThanOrEqualTo?: number;
functionalText?: string;
keywords?: Keyword[];
notClass?: Class[];
powerGreaterThanOrEqualTo?: number;
subtypes?: Subtype[];
types?: Type[];
};
helper?: string;
isCardProperty: boolean;
shorthands: string[];
}[];
export declare const multiWordShorthands: {
shorthands: string[];
description: string;
expanded: string[];
filters: {
defenseGreaterThanOrEqualTo?: number;
functionalText?: string;
keywords?: Keyword[];
notClass?: Class[];
powerGreaterThanOrEqualTo?: number;
subtypes?: Subtype[];
types?: Type[];
};
helper?: string;
isCardProperty: boolean;
}[];
export declare const singleWordShorthands: {
shorthands: string[];
description: string;
expanded: string[];
filters: {
defenseGreaterThanOrEqualTo?: number;
functionalText?: string;
keywords?: Keyword[];
notClass?: Class[];
powerGreaterThanOrEqualTo?: number;
subtypes?: Subtype[];
types?: Type[];
};
helper?: string;
isCardProperty: boolean;
}[];