fvtt-types
Version:
TypeScript type definitions for Foundry VTT
19 lines (14 loc) • 430 B
text/typescript
/**
* Responsible for managing the New User Experience workflows.
*/
declare class NewUserExperienceManager {
constructor();
/**
* Initialize the new user experience.
* Currently, this generates some chat messages with hints for getting started if we detect this is a new world.
*/
initialize(): void;
#private: true;
}
declare namespace NewUserExperienceManager {}
export default NewUserExperienceManager;