Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/@babel/parser/typings/babel-parser.d.ts

    rd565449 r0c6b92a  
    11// This file is auto-generated! Do not modify it directly.
    2 /* eslint-disable @typescript-eslint/consistent-type-imports, prettier/prettier */
     2/* eslint-disable @typescript-eslint/consistent-type-imports, @typescript-eslint/no-redundant-type-constituents */
    33import * as _babel_types from '@babel/types';
     4
     5type BABEL_8_BREAKING = false;
     6type IF_BABEL_7<V> = false extends BABEL_8_BREAKING ? V : never;
    47
    58type Plugin =
    69  | "asyncDoExpressions"
    7   | "asyncGenerators"
    8   | "bigInt"
    9   | "classPrivateMethods"
    10   | "classPrivateProperties"
    11   | "classProperties"
    12   | "classStaticBlock" // Enabled by default
    13   | "decimal"
     10  | IF_BABEL_7<"asyncGenerators">
     11  | IF_BABEL_7<"bigInt">
     12  | IF_BABEL_7<"classPrivateMethods">
     13  | IF_BABEL_7<"classPrivateProperties">
     14  | IF_BABEL_7<"classProperties">
     15  | IF_BABEL_7<"classStaticBlock">
     16  | IF_BABEL_7<"decimal">
    1417  | "decorators-legacy"
    1518  | "deferredImportEvaluation"
    1619  | "decoratorAutoAccessors"
    1720  | "destructuringPrivate"
     21  | "deprecatedImportAssert"
    1822  | "doExpressions"
    19   | "dynamicImport"
     23  | IF_BABEL_7<"dynamicImport">
    2024  | "explicitResourceManagement"
    2125  | "exportDefaultFrom"
    22   | "exportNamespaceFrom" // deprecated
     26  | IF_BABEL_7<"exportNamespaceFrom">
    2327  | "flow"
    2428  | "flowComments"
     
    2731  | "importMeta"
    2832  | "jsx"
    29   | "logicalAssignment"
    30   | "importAssertions" // deprecated
    31   | "importAttributes"
    32   | "importReflection"
     33  | IF_BABEL_7<"jsonStrings">
     34  | IF_BABEL_7<"logicalAssignment">
     35  | IF_BABEL_7<"importAssertions">
     36  | IF_BABEL_7<"importReflection">
    3337  | "moduleBlocks"
    34   | "moduleStringNames"
    35   | "nullishCoalescingOperator"
    36   | "numericSeparator"
    37   | "objectRestSpread"
    38   | "optionalCatchBinding"
    39   | "optionalChaining"
     38  | IF_BABEL_7<"moduleStringNames">
     39  | IF_BABEL_7<"nullishCoalescingOperator">
     40  | IF_BABEL_7<"numericSeparator">
     41  | IF_BABEL_7<"objectRestSpread">
     42  | IF_BABEL_7<"optionalCatchBinding">
     43  | IF_BABEL_7<"optionalChaining">
    4044  | "partialApplication"
    4145  | "placeholders"
    42   | "privateIn" // Enabled by default
    43   | "regexpUnicodeSets" // Enabled by default
     46  | IF_BABEL_7<"privateIn">
     47  | IF_BABEL_7<"regexpUnicodeSets">
    4448  | "sourcePhaseImports"
    4549  | "throwExpressions"
    46   | "topLevelAwait"
     50  | IF_BABEL_7<"topLevelAwait">
    4751  | "v8intrinsic"
    4852  | ParserPluginWithOptions[0];
     
    5155  | ["decorators", DecoratorsPluginOptions]
    5256  | ["estree", { classFeatures?: boolean }]
    53   | ["importAttributes", { deprecatedAssertSyntax: boolean }]
    54   // @deprecated
    55   | ["moduleAttributes", { version: "may-2020" }]
     57  | IF_BABEL_7<["importAttributes", { deprecatedAssertSyntax: boolean }]>
     58  | IF_BABEL_7<["moduleAttributes", { version: "may-2020" }]>
    5659  | ["optionalChainingAssign", { version: "2023-07" }]
    5760  | ["pipelineOperator", PipelineOperatorPluginOptions]
     
    6871
    6972interface PipelineOperatorPluginOptions {
    70   proposal: "minimal" | "fsharp" | "hack" | "smart";
     73  proposal: BABEL_8_BREAKING extends false
     74    ? "minimal" | "fsharp" | "hack" | "smart"
     75    : "fsharp" | "hack";
    7176  topicToken?: "%" | "#" | "@@" | "^^" | "^";
    7277}
     
    7681}
    7782
    78 interface FlowPluginOptions {
    79   all?: boolean;
    80   enums?: boolean;
    81 }
     83type FlowPluginOptions = BABEL_8_BREAKING extends true
     84  ? {
     85      all?: boolean;
     86      enums?: boolean;
     87    }
     88  : {
     89      all?: boolean;
     90    };
    8291
    8392interface TypeScriptPluginOptions {
     
    182191
    183192  /**
     193   * By default, all source indexes start from 0.
     194   * You can provide a start index to alternatively start with.
     195   * Useful for integration with other source tools.
     196   */
     197  startIndex?: number;
     198
     199  /**
    184200   * By default, the first line of code parsed is treated as line 1.
    185201   * You can provide a line number to alternatively start with.
Note: See TracChangeset for help on using the changeset viewer.