Sporades SDK API
    Preparing search index...

    Type Alias PublicUrlOptions

    Expiry policy for a generated public file URL.

    Choose exactly one of expires, ttlSeconds, or noExpiry for clear app intent.

    type PublicUrlOptions = {
        expires?: string | Date;
        noExpiry?: boolean;
        ttlSeconds?: number;
    }
    Index
    expires?: string | Date
    noExpiry?: boolean
    ttlSeconds?: number