@resistdesign/voltra
    Preparing search index...

    Type Alias TokenizationResult

    Tokenization output with a normalized string and its tokens.

    type TokenizationResult = {
        normalized: string;
        tokens: string[];
    }
    Index

    Properties

    Properties

    normalized: string

    Normalized input string used to produce tokens.

    tokens: string[]

    Token list derived from the normalized input.