@k13engineering/linux-dmabuf-allocator 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -26,7 +26,7 @@ declare const createDmabufHeapManager: ({ dmabufHeapDevFolder, kernelInterface }
26
26
  findAvailableDmabufHeapInfos: () => TDmabufHeapInfo[];
27
27
  findDmabufHeapInfosBySpecification: ({ specification }: {
28
28
  specification: TDmabufHeapSpecification;
29
- }) => any;
29
+ }) => TDmabufHeapInfo[];
30
30
  openDmabufHeapByName: ({ name }: {
31
31
  name: string;
32
32
  }) => {
@@ -98,7 +98,7 @@ const createDmabufHeapManager = ({
98
98
  specification
99
99
  }/*: {
100
100
  specification: TDmabufHeapSpecification
101
- }*/) => {
101
+ }*/)/*: TDmabufHeapInfo[]*/ => {
102
102
  const availableHeaps = findAvailableDmabufHeapInfos();
103
103
 
104
104
  // eslint-disable-next-line complexity, max-statements
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.0.3",
2
+ "version": "0.0.4",
3
3
  "name": "@k13engineering/linux-dmabuf-allocator",
4
4
  "type": "module",
5
5
  "description": "Linux dmabuf allocator module",