import { Context, Policy } from "../../main.js"; import { AllowAll } from "../../datastore/allow-all.js"; export default class Public extends Policy { static type_name: string; _getRestrictingQuery(): Promise; checkerFunction(context: Context): Promise<{ allowed: boolean; reason: string; }>; isItemSensitive: () => Promise; }