interpret/000755 001751 001751 0000000000 15105667240014566 5ustar00runner000000 000000 1510566724015105667240interpret/LICENSE000644 001751 001751 0000002165 15105667240015577 0ustar00runner000000 000000 1510566724015105667240 MIT License Copyright (c) Microsoft Corporation. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE interpret/README.md000644 001751 001751 0000002267 15105667240016057 0ustar00runner000000 000000 1510566732415105667240# Installation > `npm install --save @types/interpret` # Summary This package contains type definitions for interpret (https://github.com/gulpjs/interpret). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/interpret. ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/interpret/index.d.ts) ````ts /// export interface Hook { (m: { extensions: string } | NodeJS.Module): any; install(m?: { extension: string; [key: string]: any }): void; } export type RegisterFn = (hook: Hook) => void; export interface ExtensionDescriptor { module: string; register: RegisterFn; } export type Extension = string | ExtensionDescriptor | Array; export interface Extensions { [extension: string]: Extension | null; } export const extensions: Extensions; export const jsVariants: Extensions; ```` ### Additional Details * Last updated: Fri, 14 Nov 2025 18:02:08 GMT * Dependencies: [@types/node](https://npmjs.com/package/@types/node) # Credits These definitions were written by [BendingBender](https://github.com/BendingBender). interpret/index.d.ts000644 001751 001751 0000001055 15105667240016470 0ustar00runner000000 000000 1510566724015105667240/// export interface Hook { (m: { extensions: string } | NodeJS.Module): any; install(m?: { extension: string; [key: string]: any }): void; } export type RegisterFn = (hook: Hook) => void; export interface ExtensionDescriptor { module: string; register: RegisterFn; } export type Extension = string | ExtensionDescriptor | Array; export interface Extensions { [extension: string]: Extension | null; } export const extensions: Extensions; export const jsVariants: Extensions; interpret/package.json000644 001751 001751 0000001541 15105667240017060 0ustar00runner000000 000000 1510566732415105667240{ "name": "@types/interpret", "version": "1.1.4", "description": "TypeScript definitions for interpret", "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/interpret", "license": "MIT", "contributors": [ { "name": "BendingBender", "githubUsername": "BendingBender", "url": "https://github.com/BendingBender" } ], "main": "", "types": "index.d.ts", "repository": { "type": "git", "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/interpret" }, "scripts": {}, "dependencies": { "@types/node": "*" }, "peerDependencies": {}, "typesPublisherContentHash": "1fcd0f7f115b3ee364cbe6b43c11fbee7d0352c3116c6e6f1dbd7806bcb6759f", "typeScriptVersion": "5.2" }