🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@types/repeating

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/repeating - npm Package Compare versions

Comparing version
3.0.0
to
3.0.1
+0
-6
repeating/index.d.ts

@@ -1,7 +0,1 @@

// Type definitions for repeating 3.0
// Project: https://github.com/sindresorhus/repeating#readme
// Definitions by: Claas Ahlrichs <https://github.com/claasahl>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.7
export = repeating;

@@ -8,0 +2,0 @@

+1
-1
MIT License
Copyright (c) Microsoft Corporation. All rights reserved.
Copyright (c) Microsoft Corporation.

@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy

{
"name": "@types/repeating",
"version": "3.0.0",
"version": "3.0.1",
"description": "TypeScript definitions for repeating",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/repeating",
"license": "MIT",

@@ -9,8 +10,8 @@ "contributors": [

"name": "Claas Ahlrichs",
"url": "https://github.com/claasahl",
"githubUsername": "claasahl"
"githubUsername": "claasahl",
"url": "https://github.com/claasahl"
}
],
"main": "",
"types": "index",
"types": "index.d.ts",
"repository": {

@@ -23,4 +24,4 @@ "type": "git",

"dependencies": {},
"typesPublisherContentHash": "3c34a5d582ad475ee093494b7da8a890015e3ca232eea1a5b2d92e1121dcd4c3",
"typeScriptVersion": "2.7"
"typesPublisherContentHash": "57b40da07847d9ca1555a6a618b23776d6054bb080ac5dcd59eb974113562fd2",
"typeScriptVersion": "4.5"
}

@@ -5,13 +5,25 @@ # Installation

# Summary
This package contains type definitions for repeating ( https://github.com/sindresorhus/repeating#readme ).
This package contains type definitions for repeating (https://github.com/sindresorhus/repeating#readme).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/repeating
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/repeating.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/repeating/index.d.ts)
````ts
export = repeating;
Additional Details
* Last updated: Wed, 03 Apr 2019 00:41:12 GMT
/**
* Repeat a string - fast
*
* @param count Times the 'string' should be repeated.
* @param str String to repeat. Default: ' '
*/
declare function repeating(count: number, str?: string): string;
````
### Additional Details
* Last updated: Wed, 18 Oct 2023 11:45:06 GMT
* Dependencies: none
* Global values: none
# Credits
These definitions were written by Claas Ahlrichs <https://github.com/claasahl>.
These definitions were written by [Claas Ahlrichs](https://github.com/claasahl).