Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2
2019_TP2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nicolas.paschoud
2019_TP2
Compare revisions
master to master
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
nicolas.paschoud/2019_tp2
Select target project
No results found
master
Select Git revision
Loading items
Swap
Target
HEPIA_DevWebAv/2019_tp2
Select target project
HEPIA_DevWebAv/2019_tp2
ricardo.nunesdeo/2019_tp2
nicolas.paschoud/2019_tp2
josemanu.netogonc/2019_tp2
martin.rickenma/2019_tp2
roxanne.grant/2019_tp2
alexandr.arondel/2019_tp2
justin.foltz/2019_tp2
8 results
master
Select Git revision
Loading items
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
projet/node_modules/iconv-lite/lib/index.d.ts
+24
-0
24 additions, 0 deletions
projet/node_modules/iconv-lite/lib/index.d.ts
with
24 additions
and
0 deletions
Some changes are not shown.
For a faster browsing experience, only
1 of 241+
files are shown.
projet/node_modules/iconv-lite/lib/index.d.ts
0 → 100644
View file @
ebece994
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
* REQUIREMENT: This definition is dependent on the @types/node definition.
* Install with `npm install @types/node --save-dev`
*--------------------------------------------------------------------------------------------*/
declare
module
'
iconv-lite
'
{
export
function
decode
(
buffer
:
Buffer
,
encoding
:
string
,
options
?:
Options
):
string
;
export
function
encode
(
content
:
string
,
encoding
:
string
,
options
?:
Options
):
Buffer
;
export
function
encodingExists
(
encoding
:
string
):
boolean
;
export
function
decodeStream
(
encoding
:
string
,
options
?:
Options
):
NodeJS
.
ReadWriteStream
;
export
function
encodeStream
(
encoding
:
string
,
options
?:
Options
):
NodeJS
.
ReadWriteStream
;
}
export
interface
Options
{
stripBOM
?:
boolean
;
addBOM
?:
boolean
;
defaultEncoding
?:
string
;
}
This diff is collapsed.
Click to expand it.
Prev
1
…
9
10
11
12
13
Next