@casual-simulation/aux-common
Version:
Common library for AUX projects
19 lines • 493 B
TypeScript
export interface PrivacyFeatures {
/**
* Whether the user is allowed to publish data.
*/
publishData: boolean;
/**
* Whether the user is allowed to publish or access public data.
*/
allowPublicData: boolean;
/**
* Whether the user is allowed to access AI features.
*/
allowAI: boolean;
/**
* Whether the user is allowed to access public insts.
*/
allowPublicInsts: boolean;
}
//# sourceMappingURL=PrivacyFeatures.d.ts.map