style: fix code style in several files (#31295)

These files have not been formatted properly, due to issues in the
`gulp format*` tasks. See previous commits (or #31295) for more details.

PR Close #31295
This commit is contained in:
George Kalpakas
2019-06-26 21:33:50 +03:00
committed by Kara Erickson
parent 6b7b4ee891
commit 3851544674
6 changed files with 79 additions and 72 deletions

View File

@ -95,16 +95,16 @@ export interface CommitObject {
* The file extension or preprocessor to use for style files.
*/
export declare enum Style {
Css = "css",
Sass = "sass",
Scss = "scss",
Css = 'css',
Sass = 'sass',
Scss = 'scss',
}
/**
* The view encapsulation strategy to use in the initial project.
*/
export declare enum ViewEncapsulation {
Emulated = "Emulated",
Native = "Native",
None = "None",
ShadowDom = "ShadowDom"
Emulated = 'Emulated',
Native = 'Native',
None = 'None',
ShadowDom = 'ShadowDom'
}