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/browserslist/index.d.ts

    rd565449 r0c6b92a  
    167167  ): Query[]
    168168
     169  /**
     170   * Return queries for specific file inside the project.
     171   *
     172   * ```js
     173   * browserslist.loadConfig({
     174   *   file: process.cwd()
     175   * }) ?? browserslist.defaults
     176   * ```
     177   */
     178  function loadConfig(options: LoadConfigOptions): string[] | undefined
     179
    169180  function clearCaches(): void
    170181
     
    175186  function findConfig(...pathSegments: string[]): Config | undefined
    176187
     188  function findConfigFile(...pathSegments: string[]): string | undefined
     189
    177190  interface LoadConfigOptions {
     191    /**
     192     * Path to config file
     193     * */
    178194    config?: string
     195
     196    /**
     197     * Path to file inside the project to find Browserslist config
     198     * in closest folder
     199     */
    179200    path?: string
     201
     202    /**
     203     * Environment to choose part of config.
     204     */
    180205    env?: string
    181206  }
    182 
    183   function loadConfig(options: LoadConfigOptions): string[] | undefined
    184207}
    185208
Note: See TracChangeset for help on using the changeset viewer.