You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

1 lines
847 B

{"version":3,"file":"media-matcher.d.ts","sources":["media-matcher.d.ts"],"names":[],"mappings":"AAAA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA","sourcesContent":["import { Platform } from '@angular/cdk/platform';\n/** A utility for calling matchMedia queries. */\nexport declare class MediaMatcher {\n private _platform;\n /** The internal matchMedia method to return back a MediaQueryList like object. */\n private _matchMedia;\n constructor(_platform: Platform);\n /**\n * Evaluates the given media query and returns the native MediaQueryList from which results\n * can be retrieved.\n * Confirms the layout engine will trigger for the selector query provided and returns the\n * MediaQueryList for the query provided.\n */\n matchMedia(query: string): MediaQueryList;\n}\n"]}