Skip to content

Commit caeb530

Browse files
committed
types: make return type explicit
1 parent 3a653d4 commit caeb530

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/markdown_editor/plugins/markdown_default_plugins/processing_plugins.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export type DefaultEuiMarkdownProcessingPlugins = [
5252

5353
export const getDefaultEuiMarkdownProcessingPlugins = ({
5454
exclude,
55-
}: { exclude?: Array<'tooltip'> } = {}) => {
55+
}: { exclude?: Array<'tooltip'> } = {}): DefaultEuiMarkdownProcessingPlugins => {
5656
const excludeSet = new Set(exclude);
5757

5858
const plugins: DefaultEuiMarkdownProcessingPlugins = [

0 commit comments

Comments
 (0)