Story Maker
    Preparing search index...

    Interface Locals

    The interface that defines event.locals, which can be accessed in server hooks (handle, and handleError), server-only load functions, and +server.js files.

    interface Locals {
        session: null | Session;
        supabase: SupabaseClient;
        user: null | User;
    }
    Index

    Properties

    session: null | Session
    supabase: SupabaseClient
    user: null | User