Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(326)

Side by Side Diff: appengine/config_service/ui/bower_components/shadycss/externs/shadycss-externs.js

Issue 2923973003: Added base template for config ui. (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /** @typedef {{
2 * styleElement: function(!HTMLElement),
3 * styleSubtree: function(!HTMLElement, Object<string, string>=),
4 * prepareTemplate: function(!HTMLTemplateElement, string, string=),
5 * styleDocument: function(Object<string, string>=),
6 * getComputedStyleValue: function(!Element, string): string,
7 * ScopingShim: (Object|undefined),
8 * ApplyShim: (Object|undefined),
9 * CustomStyleInterface: (Object|undefined),
10 * nativeCss: boolean,
11 * nativeShadow: boolean,
12 * }}
13 */
14 let ShadyCSSInterface; //eslint-disable-line no-unused-vars
15
16 /**
17 * @typedef {{
18 * shimcssproperties: (boolean | undefined),
19 * shimshadow: (boolean | undefined)
20 * }}
21 */
22 let ShadyCSSOptions; //eslint-disable-line no-unused-vars
23
24 /** @type {(ShadyCSSInterface | ShadyCSSOptions | undefined)} */
25 window.ShadyCSS;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698