diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..13566b8
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 0000000..bc710fc
--- /dev/null
+++ b/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,22 @@
+
- my-lib works! -
- `, - styles: `` -}) -export class MyLib { - -} diff --git a/my-workspace/projects/my-lib/src/public-api.ts b/my-workspace/projects/my-lib/src/public-api.ts deleted file mode 100644 index 3857234..0000000 --- a/my-workspace/projects/my-lib/src/public-api.ts +++ /dev/null @@ -1,5 +0,0 @@ -/* - * Public API Surface of my-lib - */ - -export * from './lib/my-lib'; diff --git a/my-workspace/projects/my-lib/translate-texts/translate-texts.html b/my-workspace/projects/my-lib/translate-texts/translate-texts.html deleted file mode 100644 index 7e8ae0c..0000000 --- a/my-workspace/projects/my-lib/translate-texts/translate-texts.html +++ /dev/null @@ -1,16 +0,0 @@ -http://example.com/#/foo
,
+ * and `PathLocationStrategy` produces
+ * http://example.com/foo
as an equivalent URL.
+ *
+ * See these two classes for more.
+ *
+ * @publicApi
+ */
+declare abstract class LocationStrategy {
+ abstract path(includeHash?: boolean): string;
+ abstract prepareExternalUrl(internal: string): string;
+ abstract getState(): unknown;
+ abstract pushState(state: any, title: string, url: string, queryParams: string): void;
+ abstract replaceState(state: any, title: string, url: string, queryParams: string): void;
+ abstract forward(): void;
+ abstract back(): void;
+ historyGo?(relativePosition: number): void;
+ abstract onPopState(fn: LocationChangeListener): void;
+ abstract getBaseHref(): string;
+ static ɵfac: i0.ɵɵFactoryDeclaration