-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(lib): allow img attributes #111
Changes from 1 commit
7dbf99a
e0664d3
b2fcf3d
8e4d280
7e75de8
231a22a
7b21b9e
71c0471
bf40584
f0f083f
8ccdbc1
c302cc0
770f670
658b9ea
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export declare class ImageAttribute { | ||
element: string; | ||
value: string; | ||
encapsulateWithBrackets: boolean; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[{"__symbolic":"module","version":3,"metadata":{"ImageAttribute":{"__symbolic":"class"}}},{"__symbolic":"module","version":1,"metadata":{"ImageAttribute":{"__symbolic":"class"}}}] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export class ImageAttribute { | ||
element: string = ""; | ||
value: string = ""; | ||
encapsulateWithBrackets: boolean = false; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be an interface