From 494e55769c12a6f1679898b9b78aadf5608d914b Mon Sep 17 00:00:00 2001 From: Ibrahim Hadeed Date: Wed, 11 May 2016 01:05:12 -0400 Subject: [PATCH] change interface to type in filename --- src/plugins/hotspot.ts | 8 ++++---- .../connection-info.type.ts} | 0 .../hotspot-device.type.ts} | 0 .../network-config.type.ts} | 0 .../network.interface.ts => types/network.type.ts} | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename src/plugins/{interfaces/connection-info.interface.ts => types/connection-info.type.ts} (100%) rename src/plugins/{interfaces/hotspot-device.interface.ts => types/hotspot-device.type.ts} (100%) rename src/plugins/{interfaces/network-config.interface.ts => types/network-config.type.ts} (100%) rename src/plugins/{interfaces/network.interface.ts => types/network.type.ts} (100%) diff --git a/src/plugins/hotspot.ts b/src/plugins/hotspot.ts index 27fdbff3a..acc29c853 100644 --- a/src/plugins/hotspot.ts +++ b/src/plugins/hotspot.ts @@ -1,9 +1,9 @@ import {Plugin, Cordova} from './plugin'; -import {Network} from './interfaces/network.interface'; -import {NetworkConfig} from './interfaces/network-config.interface'; -import {ConnectionInfo} from './interfaces/connection-info.interface'; -import {HotspotDevice} from './interfaces/hotspot-device.interface'; +import {Network} from './types/network.type'; +import {NetworkConfig} from './types/network-config.type'; +import {ConnectionInfo} from './types/connection-info.type'; +import {HotspotDevice} from './types/hotspot-device.type'; /** * @name Hotspot diff --git a/src/plugins/interfaces/connection-info.interface.ts b/src/plugins/types/connection-info.type.ts similarity index 100% rename from src/plugins/interfaces/connection-info.interface.ts rename to src/plugins/types/connection-info.type.ts diff --git a/src/plugins/interfaces/hotspot-device.interface.ts b/src/plugins/types/hotspot-device.type.ts similarity index 100% rename from src/plugins/interfaces/hotspot-device.interface.ts rename to src/plugins/types/hotspot-device.type.ts diff --git a/src/plugins/interfaces/network-config.interface.ts b/src/plugins/types/network-config.type.ts similarity index 100% rename from src/plugins/interfaces/network-config.interface.ts rename to src/plugins/types/network-config.type.ts diff --git a/src/plugins/interfaces/network.interface.ts b/src/plugins/types/network.type.ts similarity index 100% rename from src/plugins/interfaces/network.interface.ts rename to src/plugins/types/network.type.ts