SongGuess
    Preparing search index...

    Type Alias StreamVideosListParams

    type StreamVideosListParams = {
        after?: string;
        afterComp?: StreamPaginationComparison;
        before?: string;
        beforeComp?: StreamPaginationComparison;
        limit?: number;
    }
    Index

    Properties

    after?: string

    Return videos created after this timestamp. (RFC3339/RFC3339Nano)

    Comparison operator for the after field.

    'gte'
    
    before?: string

    Return videos created before this timestamp. (RFC3339/RFC3339Nano)

    Comparison operator for the before field.

    'lt'
    
    limit?: number

    The maximum number of videos to return.