You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When pasting in component code to the app.component.ts file I get the following error: Object literal may only specify known properties, but 'styleUrl' does not exist in type 'Component'. Did you mean to write 'styleUrls'?
If I update styleUrl to be styleUrls, I get an error that Type 'string' is not assignable to type 'string[]'
Additionally, the sheet parameter does not appear to be available to ISpace, even though it's part of the SimpleOnboarding interface, and other parameters from that interface are allowed.
The text was updated successfully, but these errors were encountered:
Seeing some typing issues when following this guide: https://flatfile.com/docs/apps/embedding/angular/new_space_quickstart
When pasting in component code to the
app.component.ts
file I get the following error:Object literal may only specify known properties, but 'styleUrl' does not exist in type 'Component'. Did you mean to write 'styleUrls'?
If I update
styleUrl
to bestyleUrls
, I get an error thatType 'string' is not assignable to type 'string[]'
Additionally, the
sheet
parameter does not appear to be available toISpace
, even though it's part of the SimpleOnboarding interface, and other parameters from that interface are allowed.The text was updated successfully, but these errors were encountered: