Skip to content
This repository has been archived by the owner on Feb 26, 2025. It is now read-only.

Commit

Permalink
cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
noise64 committed Jan 16, 2025
1 parent 7322064 commit 666f530
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
state: int = 0

from binding.pack_name import exports
from lib import example_common_function
# Example common lib import
# from lib import example_common_function

class ComponentNameApi(exports.ComponentNameApi):
def add(self, value: int):
global state
print("add " + str(value))
print(example_common_function())
state = state + value

def get(self) -> int:
Expand Down
3 changes: 0 additions & 3 deletions examples/ts/ts-app-common/src/lib.ts

This file was deleted.

0 comments on commit 666f530

Please sign in to comment.