generated from Exabyte-io/template-definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SOF-7136: create a common base class for all Hubbard properties
- Loading branch information
Showing
4 changed files
with
10 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1 @@ | ||
import { Property } from "../../property"; | ||
|
||
export class HubbardUProperty extends Property { | ||
get values() { | ||
return this.prop("values"); | ||
} | ||
} | ||
export { PropertyWithValues as HubbardUProperty } from "../../propery_with_values"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1 @@ | ||
import { Property } from "../../property"; | ||
|
||
export class HubbardVProperty extends Property { | ||
get values() { | ||
return this.prop("values"); | ||
} | ||
} | ||
export { PropertyWithValues as HubbardVProperty } from "../../propery_with_values"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1 @@ | ||
import { Property } from "../../property"; | ||
|
||
export class HubbardVNNProperty extends Property { | ||
get values() { | ||
return this.prop("values"); | ||
} | ||
} | ||
export { PropertyWithValues as HubbardVNNProperty } from "../../propery_with_values"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { Property } from "./property"; | ||
|
||
export class PropertyWithValues extends Property { | ||
get values() { | ||
return this.prop("values"); | ||
} | ||
} |