@illandril/foundryvtt-types
Version:
Type definitions for the Foundry VTT client, used by Illandril's modules
21 lines (19 loc) • 431 B
TypeScript
declare global {
interface DocumentModificationContext {
parent?: foundry.abstract.Document;
pack?: string;
noHook?: boolean;
index?: boolean;
indexFields?: string[];
keepId?: boolean;
keepEmbeddedIds?: boolean;
temporary?: boolean;
render?: boolean;
renderSheet?: boolean;
diff?: boolean;
recursive?: boolean;
isUndo?: boolean;
deleteAll?: boolean;
}
}
export type {};