Skip to content

Commit 22066de

Browse files
Changed import orders and added type
1 parent 0101a32 commit 22066de

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/v2.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@
2020
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
// SOFTWARE.
2222

23-
import { CloudFunction, CloudEvent } from 'firebase-functions/v2';
24-
import { CallableFunction, CallableRequest } from 'firebase-functions/v2/https';
25-
26-
import { generateCombinedCloudEvent } from './cloudevent/generate';
27-
import { DeepPartial } from './cloudevent/types';
28-
import {
23+
import type { CloudFunction, CloudEvent } from 'firebase-functions/v2';
24+
import type { CallableFunction, CallableRequest } from 'firebase-functions/v2/https';
25+
import type {
2926
ScheduledEvent,
3027
ScheduleFunction,
3128
} from 'firebase-functions/v2/scheduler';
3229

30+
import { generateCombinedCloudEvent } from './cloudevent/generate';
31+
import { DeepPartial } from './cloudevent/types';
32+
3333
type V2WrappableFunctions =
3434
| CloudFunction<any>
3535
| CallableFunction<any, any>

0 commit comments

Comments
 (0)