mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 04:50:18 +00:00
Merge pull request #17279 from iamstevetran/master
Create types for ffmpeg-static and ffprobe-static
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
import * as ffmpegStatic from 'ffmpeg-static';
|
||||
|
||||
ffmpegStatic.path;
|
||||
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
// Type definitions for ffmpeg-static 2.0
|
||||
// Project: https://github.com/eugeneware/ffmpeg-static#readme
|
||||
// Definitions by: Steve Tran <https://github.com/iamstevetran>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
|
||||
/*~ You can declare properties of the module using const, let, or var */
|
||||
/**
|
||||
* Binary location
|
||||
*/
|
||||
export const path: string;
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"lib": [
|
||||
"es6"
|
||||
],
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
"strictNullChecks": true,
|
||||
"baseUrl": "../",
|
||||
"typeRoots": [
|
||||
"../"
|
||||
],
|
||||
"types": [],
|
||||
"noEmit": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
},
|
||||
"files": [
|
||||
"index.d.ts",
|
||||
"ffmpeg-static-tests.ts"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{ "extends": "dtslint/dt.json" }
|
||||
@@ -0,0 +1,3 @@
|
||||
import * as ffprobeStatic from 'ffmpeg-static';
|
||||
|
||||
ffprobeStatic.path;
|
||||
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
// Type definitions for ffprobe-static 2.0
|
||||
// Project: https://github.com/joshwnj/ffprobe-static
|
||||
// Definitions by: Steve Tran <https://github.com/iamstevetran>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
|
||||
/*~ You can declare properties of the module using const, let, or var */
|
||||
/**
|
||||
* Binary location
|
||||
*/
|
||||
export const path: string;
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"lib": [
|
||||
"es6"
|
||||
],
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
"strictNullChecks": true,
|
||||
"baseUrl": "../",
|
||||
"typeRoots": [
|
||||
"../"
|
||||
],
|
||||
"types": [],
|
||||
"noEmit": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
},
|
||||
"files": [
|
||||
"index.d.ts",
|
||||
"ffprobe-static-tests.ts"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{ "extends": "dtslint/dt.json" }
|
||||
Reference in New Issue
Block a user