Skip to content

Commit 8b1eed0

Browse files
committed
Type improvements
1 parent e45941b commit 8b1eed0

File tree

87 files changed

+18
-2673
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+18
-2673
lines changed

@types/core/parse/ast-type.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ export namespace ASTType {
1616
let _ObjectExpression: number;
1717
let _ThisExpression: number;
1818
let _LocalsExpression: number;
19-
let NGValueParameter: number;
19+
let _NGValueParameter: number;
2020
}

@types/core/parse/parser/parser.d.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @typedef {Object} ParsedAST
3-
* @property {import("../ast/ast-node.d.ts").ASTNode} ast - AST representation of expression
3+
* @property {import("../ast/ast-node.ts").ASTNode} ast - AST representation of expression
44
*/
55
/**
66
* @constructor
@@ -24,13 +24,12 @@ export class Parser {
2424
* @returns {import("../interface.ts").CompiledExpression}
2525
*/
2626
_parse(exp: string): import("../interface.ts").CompiledExpression;
27-
#private;
2827
}
2928
export type ParsedAST = {
3029
/**
3130
* - AST representation of expression
3231
*/
33-
ast: import("../ast/ast-node.d.ts").ASTNode;
32+
ast: import("../ast/ast-node.ts").ASTNode;
3433
};
3534
import { AST } from "../ast/ast.js";
3635
import { ASTInterpreter } from "../interpreter.js";

@types/interface.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,9 +430,9 @@ export interface Directive<TController = any> {
430430
templateUrl?: string | ((element: Element, attrs: Attributes) => string);
431431
/** Enables transclusion or configures named slots */
432432
transclude?: boolean | string | Record<string, string>;
433-
/** Internal hook for directive compilation state */
434-
$$addStateInfo?: (...args: any[]) => any;
435433
count?: number;
434+
/** Internal hook for directive compilation state */
435+
_addStateInfo?: (...args: any[]) => any;
436436
}
437437
export type DirectiveFactoryFn = (
438438
...args: any[]

@types/services/websocket/interface.d.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@ export interface WebSocketConfig extends StreamConnectionConfig {
1414
* Acts as a factory for pre-configured WebSocket connections.
1515
*/
1616
export type WebSocketService = (
17-
/** The WebSocket URL (already pre-configured if passed at module registration) */
1817
url?: string,
19-
/** Optional WebSocket subprotocols */
2018
protocols?: string[],
21-
/** Optional configuration (merges with defaults) */
2219
config?: WebSocketConfig,
2320
) => StreamConnection;

docs/static/typedoc/.nojekyll

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/static/typedoc/assets/hierarchy.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/static/typedoc/assets/highlight.css

Lines changed: 0 additions & 99 deletions
This file was deleted.

docs/static/typedoc/assets/icons.js

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)