Skip to content

Commit 9059a3b

Browse files
authored
unexport createDecorator (microsoft#165039)
related to microsoft#164938
1 parent 3f87353 commit 9059a3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/base/common/decorators.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
export function createDecorator(mapFn: (fn: Function, key: string) => Function): Function {
6+
function createDecorator(mapFn: (fn: Function, key: string) => Function): Function {
77
return (target: any, key: string, descriptor: any) => {
88
let fnKey: string | null = null;
99
let fn: Function | null = null;

0 commit comments

Comments
 (0)