Skip to content

Commit

Permalink
save for now
Browse files Browse the repository at this point in the history
  • Loading branch information
sofisl committed Sep 17, 2024
1 parent d9c2ec4 commit b802c42
Show file tree
Hide file tree
Showing 8 changed files with 3,343 additions and 3,785 deletions.
6 changes: 5 additions & 1 deletion cli/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,9 @@ export class Enum extends ReflectionObject {
/** Values options, if any */
public valuesOptions?: { [k: string]: { [k: string]: any } };

/** Values features, if any */
public _valuesFeatures?: { [k: string]: { [k: string]: any } };

/** Reserved ranges, if any. */
public reserved: (number[]|string)[];

Expand Down Expand Up @@ -877,6 +880,9 @@ export abstract class ReflectionObject {
/** Unique name within its namespace. */
public name: string;

/** Resolved Features. */
public _features: any;

/** Parent namespace. */
public parent: (Namespace|null);

Expand Down Expand Up @@ -1255,7 +1261,7 @@ export class Root extends NamespaceBase {

/**
* Loads a namespace descriptor into a root namespace.
* @param json Nameespace descriptor
* @param json Namespace descriptor
* @param [root] Root namespace, defaults to create a new one if omitted
* @returns Root namespace
*/
Expand Down
Loading

0 comments on commit b802c42

Please sign in to comment.