Skip to content

Commit a7395a8

Browse files
author
Maciej Makowski
committed
refactor: update imports
1 parent 9375e4c commit a7395a8

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

apps/common-app/src/examples/Oscillator/Oscillator.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import { useRef, useState, useEffect, FC } from 'react';
33
import { StyleSheet, Text, View, Pressable } from 'react-native';
44
import {
55
AudioContext,
6-
WaveType,
7-
type GainNode,
8-
type OscillatorNode,
9-
type StereoPannerNode,
6+
GainNode,
7+
OscillatorNode,
8+
StereoPannerNode,
9+
type WaveType,
1010
} from 'react-native-audio-api';
1111

1212
import { Container, Slider, Spacer, Button } from '../../components';

apps/common-app/src/examples/Piano/PianoNote.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
import type {
2-
GainNode,
3-
AudioContext,
4-
OscillatorNode,
5-
} from 'react-native-audio-api';
1+
import { GainNode, AudioContext, OscillatorNode } from 'react-native-audio-api';
62

73
import { Key } from './utils';
84

0 commit comments

Comments
 (0)