Skip to content

Commit

Permalink
types: make return type explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
janmonschke committed Sep 25, 2023
1 parent 3a653d4 commit caeb530
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export type DefaultEuiMarkdownProcessingPlugins = [

export const getDefaultEuiMarkdownProcessingPlugins = ({
exclude,
}: { exclude?: Array<'tooltip'> } = {}) => {
}: { exclude?: Array<'tooltip'> } = {}): DefaultEuiMarkdownProcessingPlugins => {
const excludeSet = new Set(exclude);

const plugins: DefaultEuiMarkdownProcessingPlugins = [
Expand Down

0 comments on commit caeb530

Please sign in to comment.