Skip to main content

Page

Handle (Meta)

export type Meta = {
title?: string;
description?: string;

layout?: Layouts;
authedOnly?: boolean;
acl?:
| {
action?: Actions;
subject?: Subjects;
}
| false;
};

export type HandleFunctionResolver = () => Meta;