MCPcopy Create free account
hub / github.com/aws/constructs / IConstruct

Interface IConstruct

src/construct.ts:13–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11 * Represents a construct.
12 */
13export interface IConstruct extends IDependable {
14 /**
15 * The tree node.
16 */
17 readonly node: Node;
18
19 /**
20 * Applies one or more mixins to this construct.
21 *
22 * Mixins are applied in order. The list of constructs is captured at the
23 * start of the call, so constructs added by a mixin will not be visited.
24 *
25 * @param mixins The mixins to apply
26 * @returns This construct for chaining
27 */
28 with(...mixins: IMixin[]): IConstruct;
29}
30
31/**
32 * Represents the construct node in the scope tree.

Callers 2

construct.test.tsFile · 0.65
withMethod · 0.65

Implementers 2

Constructsrc/construct.ts
Nodesrc/construct.ts

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…