Created
March 24, 2021 16:39
-
-
Save iansmith/5b8ed83a83e856f9a7be02515e92fcb5 to your computer and use it in GitHub Desktop.
from evalvite article, type decls for important checkbox
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
// file: example1/importantcheckbox.ts | |
// imports omitted | |
type localProps = { | |
model: ImportantCheckBoxModel, | |
} | |
type localState = { | |
important: boolean; // needs to match the <boolean> of the attribute in model | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment