export const PageDeleteConfigValue = { Anyone: 'anyOne', // must be "anyOne" (not "anyone") for backward compatibility AdminAndAuthor: 'adminAndAuthor', AdminOnly: 'adminOnly', Inherit: 'inherit', } as const; export type IPageDeleteConfigValue = typeof PageDeleteConfigValue[keyof typeof PageDeleteConfigValue]; export type IPageDeleteConfigValueToProcessValidation = Exclude; export const PageSingleDeleteConfigValue = { Anyone: 'anyOne', // must be "anyOne" (not "anyone") for backward compatibility AdminAndAuthor: 'adminAndAuthor', AdminOnly: 'adminOnly', } as const; export type PageSingleDeleteConfigValue = Exclude; export const PageSingleDeleteCompConfigValue = { Anyone: 'anyOne', // must be "anyOne" (not "anyone") for backward compatibility AdminAndAuthor: 'adminAndAuthor', AdminOnly: 'adminOnly', } as const; export type PageSingleDeleteCompConfigValue = Exclude; export const PageRecursiveDeleteConfigValue = { AdminAndAuthor: 'adminAndAuthor', AdminOnly: 'adminOnly', Inherit: 'inherit', } as const; export type PageRecursiveDeleteConfigValue = Exclude; export const PageRecursiveDeleteCompConfigValue = { AdminAndAuthor: 'adminAndAuthor', AdminOnly: 'adminOnly', Inherit: 'inherit', } as const; export type PageRecursiveDeleteCompConfigValue = Exclude;